home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / pdflib / include / unistd.h < prev   
C/C++ Source or Header  |  1999-09-16  |  217b  |  18 lines

  1. #ifndef __UNISTD_H
  2. #define __UNISTD_H
  3.  
  4. #include <libc.h>
  5.  
  6. #ifndef _DOS_H
  7. #include <dos.h>
  8. #endif
  9.  
  10. #ifndef _FCNTL_H
  11. #include <fcntl.h>
  12. #endif
  13.  
  14. char *mktemp(char *template_arg);
  15. int mkstemp(char *template_arg);
  16.  
  17. #endif
  18.